home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / VBASIC / BKWAIT.ZIP / README.TXT next >
Encoding:
Text File  |  1996-07-25  |  564 b   |  28 lines

  1. BKWait Sub for Visual Basic
  2.  
  3. author:  Chad Boles
  4. email:   clboles@eos.ncsu.edu
  5.  
  6.  
  7. Hi all, this is a simple sub that will enable you to
  8. pause your program's execution for a specified number
  9. of seconds WITHOUT using the doevents() function.
  10. Good luck, and email me if you have any problems or
  11. questions.
  12.  
  13.  
  14. Usage:
  15.  
  16. Place the code found in wait.txt in the (General)
  17.    section of your form or module.
  18.  
  19.  
  20. To call the sub in your code, simply type:
  21.  
  22.    BKWait(secs)
  23.  
  24. Example:
  25.  
  26.    This example will pause your program for 3 seconds.
  27.    BKWait(3)
  28.